google.golang.org/protobuf/internal/impl.extensionTypeDescriptor.MapValue (method, view implemented interface methods)

30 uses

	google.golang.org/protobuf/internal/impl (current package)
		checkinit.go#L133: 			fd = fd.MapValue()
		codec_map.go#L30: 	valField := fd.MapValue()
		convert_map.go#L26: 		valConv: newSingularConverter(t.Elem(), fd.MapValue()),
		message_reflect.go#L201: 			if fd.MapValue().Enum() != nil || fd.MapValue().Message() != nil {
		message_reflect.go#L204: 			isMessage = fd.MapValue().Message() != nil
		validate.go#L183: 		switch fd.MapValue().Kind() {

	google.golang.org/protobuf/internal/descfmt
		stringer.go#L157: 					if v := t.MapValue(); v != nil {

	google.golang.org/protobuf/encoding/protojson
		decode.go#L565: 	switch fd.MapValue().Kind() {
		decode.go#L576: 			return d.unmarshalScalar(fd.MapValue())
		encode.go#L337: 		if err = e.marshalSingular(v, fd.MapValue()); err != nil {

	google.golang.org/protobuf/encoding/prototext
		decode.go#L449: 	switch fd.MapValue().Kind() {
		decode.go#L460: 			return d.unmarshalScalar(fd.MapValue())
		decode.go#L538: 			if kind := fd.MapValue().Kind(); (kind != protoreflect.MessageKind) && (kind != protoreflect.GroupKind) {
		decode.go#L563: 		switch fd.MapValue().Kind() {
		decode.go#L569: 			pval = fd.MapValue().Default()
		encode.go#L284: 		err = e.marshalSingular(val, fd.MapValue())

	google.golang.org/protobuf/proto
		checkinit.go#L55: 			if fd.MapValue().Message() == nil {
		decode.go#L219: 		valField = fd.MapValue()
		encode.go#L274: 	valf := fd.MapValue()
		equal.go#L97: 		equal = y.Has(k) && equalValue(fd.MapValue(), vx, vy)
		merge.go#L88: 			o.mergeMap(dst.Mutable(fd).Map(), v.Map(), fd.MapValue())
		size.go#L93: 		size += protowire.SizeBytes(o.sizeField(fd.MapKey(), key.Value()) + o.sizeField(fd.MapValue(), value))

	google.golang.org/protobuf/reflect/protoreflect
		type.go#L356: 	MapValue() FieldDescriptor

	github.com/golang/protobuf/jsonpb
		decode.go#L425: 		vfd := fd.MapValue()
		encode.go#L448: 		vfd := fd.MapValue()

	github.com/golang/protobuf/proto
		defaults.go#L53: 			if fd.MapValue().Message() != nil {
		discard.go#L43: 			if fd.MapValue().Message() != nil {
		text_decode.go#L320: 		valFD := fd.MapValue()
		text_encode.go#L295: 			vfd := fd.MapValue()